/* =====================================================
   Chartveda — Real Knowledge for Real Time Market
   Original design preserved + extended with new sections
   ===================================================== */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-hover: #222222;
    --green-profit: #059669;
    --green-dark: #00c853;
    --green-glow: rgba(0, 230, 118, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border: #2a2a2a;
    --shadow: rgba(0,0,0,0.5);
}

/* Light Mode Variables */
body.light-mode {
    --bg-primary: #f5f7fa;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-hover: #f0f2f5;
    --green-profit: #059669;
    --green-dark: #009624;
    --green-glow: rgba(0, 200, 83, 0.1);
    --text-primary: #1a1a2e;
    --text-secondary: #5a5a7a;
    --text-muted: #8888aa;
    --border: #e0e0e8;
    --shadow: rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Anek Gujarati', 'Inter', 'Noto Sans Gujarati', sans-serif;/*'Inter', 'Noto Sans Gujarati', sans-serif; */
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.5s ease, color 0.5s ease;
}

/* Gujarati text gets a proper font fallback */
.guji, .hero-guji, .course-guji, .community-guji, .faq-question, .faq-answer {
    font-family: 'Anek Gujarati', 'Inter', 'Noto Sans Gujarati', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--green-dark);
    border-radius: 4px;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text h3 {
    color: var(--green-profit);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-text h3::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--green-profit);
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-text h1 .highlight {
    color: var(--green-profit);
    position: relative;
}

.hero-guji {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.7rem;
    max-width: 540px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-primary {
    background: var(--green-profit);
    color: var(--bg-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--green-profit);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--green-profit);
    box-shadow: 0 0 30px var(--green-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--green-profit);
    color: var(--green-profit);
}

.btn-primary.disabled,
.btn-primary.disabled:hover {
    background: var(--bg-card);
    color: var(--text-muted);
    border-color: var(--border);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 400px;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--green-profit);
    box-shadow: 0 0 60px var(--green-glow);
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid var(--green-profit);
    border-radius: 30px;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating-badge {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px var(--shadow);
}

.badge-1 {
    top: 10%;
    right: 0;
    animation: float 3s ease-in-out infinite;
}

.badge-2 {
    bottom: 15%;
    left: -30px;
    animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge i {
    font-size: 1.5rem;
    color: var(--green-profit);
}

.floating-badge .badge-text {
    font-size: 0.85rem;
}

.floating-badge .badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--green-profit);
}

/* Journey Banner */
.journey-banner {
    padding: 4rem 5%;
    background: var(--green-profit);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.journey-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.journey-banner h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bg-primary);
    margin-bottom: 0.5rem;
}

.journey-banner h2 span {
    color: #003322;
    text-decoration: underline;
    text-decoration-color: rgba(0, 51, 34, 0.4);
    text-underline-offset: 6px;
}

.journey-banner p {
    font-size: 1.2rem;
    color: rgba(10, 10, 10, 0.8);
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h3 {
    color: var(--green-profit);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

.section-header h2 span {
    color: var(--green-profit);
}

.section-header p {
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About / Detailed About Us Section */
.about {
    padding: 6rem 5%;
    background: var(--bg-secondary);
    position: relative;
    transition: background 0.5s ease;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.about-image {
    position: relative;
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    border: 2px solid var(--green-profit);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--green-profit);
    color: var(--bg-primary);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    display: block;
    line-height: 1;
}

.about-content .about-eyebrow {
    color: var(--green-profit);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--green-profit);
}

.about-subhead {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.why-title {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--green-profit);
}

.why-list {
    list-style: none;
    margin-bottom: 2rem;
}

.why-list li {
    color: var(--text-secondary);
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.why-list li:hover {
    color: var(--text-primary);
    padding-left: 2.5rem;
}

.why-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--green-profit);
    position: absolute;
    left: 0;
    top: 0.9rem;
}

.why-list li strong {
    color: var(--text-primary);
    font-weight: 700;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.vm-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--green-profit);
}

.vm-card:hover {
    border-color: var(--green-profit);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--green-glow);
}

.vm-icon {
    width: 50px;
    height: 50px;
    background: var(--green-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-profit);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.vm-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.vm-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.about-stat:hover {
    border-color: var(--green-profit);
    transform: translateY(-3px);
}

.about-stat .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-profit);
}

.about-stat .label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

/* Courses Section */
.courses {
    padding: 6rem 5%;
    background: var(--bg-secondary);
    transition: background 0.5s ease;
}

/* Courses List — flat editorial layout, no cards */
/* Courses List — reference-style layout */
.courses-list {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

/* Side-by-side: video on one side, all course details on the other */
.course-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
    width: 100%;
}

/* Reverse course: video on the right, details on the left */
.course-block.reverse .course-video {
    order: 2;
}

.course-block.reverse .course-details {
    order: 1;
}

/* Course details column — holds head, feature cards, bullets, pricing */
.course-details {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* Video frame — sticky so it stays visible while reading the details */
.course-video {
    position: sticky;
    top: 100px;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    border-radius: 12px;
}

.course-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Header: badge + title + subtitle + guji intro */
.course-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.course-badge {
    display: inline-block;
    background: var(--green-profit);
    color: var(--bg-primary);
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    font-size: 0.98rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.course-head h3 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    margin: 0;
}

.course-subtitle {
    color: var(--green-profit);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.course-guji {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0.5rem 0 0;
    max-width: 700px;
}

/* Feature cards — 4 in a row */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--green-profit);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px var(--green-glow);
}

.feature-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green-profit);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.feature-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Bullets list — green dot bullets */
.course-bullets {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 2rem;
}

.course-bullets li {
    color: var(--text-secondary);
    padding: 0.3rem 0 0.3rem 1.5rem;
    position: relative;
    font-size: 0.93rem;
    line-height: 1.55;
}

.course-bullets li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green-profit);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.65rem;
}

/* Pricing row — fits in the details column: FEES label spans top, then 2 prices, then coupon+CTA */
.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 1.5rem;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
}

.price-label-col {
    grid-column: 1 / -1;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.price-cta-col {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
}

.price-col {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.price-heading {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 700;
}

.price-original {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: #ff5252;
    line-height: 1;
}

.price-now {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--green-profit);
    line-height: 1.1;
}

.price-validity {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
}

body.light-mode .coupon-badge {
    background: #fef3c7;
}

.coupon-off {
    color: #d97706;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-code {
    color: #92400e;
    font-size: 0.72rem;
    font-weight: 600;
}

.coupon-code strong {
    color: #d97706;
    font-weight: 900;
    letter-spacing: 1px;
}

.course-cta {
    padding: 0.8rem 2rem;
    white-space: nowrap;
}

/* "Access Now" button — placed after feature cards */
.course-access {
    align-self: flex-start;
    padding: 0.8rem 2.2rem;
}

/* "What you'll learn" sub-section inside a course */
.course-learn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--green-profit);
    border-radius: 10px;
    padding: 1.3rem 1.5rem;
}

.course-learn h4 {
    color: var(--green-profit);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.course-learn .course-bullets {
    margin: 0;
}
/* Hack Your Wealth Journey Section */
.wealth {
    padding: 6rem 5%;
    background: var(--bg-primary);
    transition: background 0.5s ease;
}

.wealth-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.wealth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.wealth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, var(--green-glow), transparent);
    transition: height 0.4s ease;
}

.wealth-card:hover::before {
    height: 100%;
}

.wealth-card:hover {
    border-color: var(--green-profit);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--green-glow);
}

.wealth-card > * {
    position: relative;
    z-index: 1;
}

.wealth-icon {
    width: 70px;
    height: 70px;
    background: var(--green-glow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-profit);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.wealth-card:hover .wealth-icon {
    background: var(--green-profit);
    color: var(--bg-primary);
    transform: rotate(8deg) scale(1.1);
}

.wealth-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.wealth-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 6rem 5%;
    background: var(--bg-primary);
    transition: background 0.5s ease;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--green-profit);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--green-profit);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--green-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-profit);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
}

.author-info span {
    color: var(--green-profit);
    font-size: 0.85rem;
}

.profit-tag {
    display: inline-block;
    background: var(--green-glow);
    color: var(--green-profit);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 5%;
    background: var(--bg-secondary);
    transition: background 0.5s ease;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--green-profit);
}

.faq-item.active {
    border-color: var(--green-profit);
    box-shadow: 0 10px 30px var(--green-glow);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.05rem;
    transition: all 0.3s;
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--green-profit);
}

.faq-item.active .faq-question {
    color: var(--green-profit);
}

.faq-icon {
    color: var(--green-profit);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--green-profit);
}

/* Community Section (Demat) */
.community {
    padding: 6rem 5%;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease;
}

.community::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.community-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.community-content h3 {
    color: var(--green-profit);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.community-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.community-content h2 span {
    color: var(--green-profit);
}

.community-content p {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.community-guji {
    color: var(--text-secondary);
    font-size: 1rem !important;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    border-left: 3px solid var(--green-profit);
    margin-bottom: 1.5rem !important;
}

.community-visual {
    display: flex;
    justify-content: center;
}

.demat-card {
    background: var(--bg-card);
    border: 2px solid var(--green-profit);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    box-shadow: 0 20px 60px var(--green-glow);
    position: relative;
    overflow: hidden;
}

.demat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--green-glow) 0%, transparent 60%);
    z-index: 0;
}

.demat-card > * {
    position: relative;
    z-index: 1;
}

.demat-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green-profit);
    margin-bottom: 1rem;
}

.demat-card h4 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.demat-card > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.demat-benefits {
    list-style: none;
    margin-bottom: 1.5rem;
}

.demat-benefits li {
    color: var(--text-primary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
}

.demat-benefits li i {
    color: var(--green-profit);
    font-size: 1.1rem;
}

/* Social Media Section */
.social {
    padding: 6rem 5%;
    background: var(--bg-secondary);
    transition: background 0.5s ease;
}

.social-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.social-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--green-glow);
    transition: height 0.3s;
}

.social-card:hover::before {
    height: 100%;
}

.social-card:hover {
    border-color: var(--green-profit);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--green-glow);
}

.social-card > * {
    position: relative;
    z-index: 1;
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.social-card.youtube i { color: #ff0000; }
.social-card.instagram i { color: #e4405f; }
.social-card.telegram i { color: #0088cc; }
.social-card.whatsapp i { color: #25d366; }

.social-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.social-card .followers {
    color: var(--green-profit);
    font-weight: 700;
    font-size: 1.3rem;
}

.social-card .follow-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 5%;
    background: var(--bg-primary);
    transition: background 0.5s ease;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--green-profit);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--green-glow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--green-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--green-profit);
    font-size: 1.6rem;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon {
    background: var(--green-profit);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--green-profit);
    font-weight: 600;
    font-size: 1.1rem;
    word-break: break-all;
}

/* APK Section */
.apk-section {
    max-width: 1000px;
    margin: 4rem auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
}

.apk-section h3 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.apk-section h3 span {
    color: var(--green-profit);
}

.apk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.apk-link {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

.apk-link:hover {
    border-color: var(--green-profit);
    background: var(--green-glow);
    transform: translateY(-5px);
}

.apk-link i {
    font-size: 2rem;
    color: var(--green-profit);
}

.apk-link span {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 3rem 5%;
    text-align: center;
    transition: background 0.5s ease;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--green-profit);
}

.footer-brand {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-brand strong {
    color: var(--green-profit);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--green-profit);
    color: var(--bg-primary);
    border-color: var(--green-profit);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    position: relative;
}

.footer-links a:hover {
    color: var(--green-profit);
}

.footer-links a.no-refund {
    color: #ff5252;
    font-weight: 700;
    border: 1px solid #ff5252;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Floating Live Chat */
.live-chat {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: #fff;
    padding: 0.9rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: chatPulse 2s ease-in-out infinite;
}

@keyframes chatPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7); }
}

.live-chat:hover {
    transform: translateY(-3px) scale(1.05);
    background: #1da851;
}

.live-chat i {
    font-size: 1.5rem;
}

.live-chat-text {
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-text p, .hero-guji {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-text h3 {
        justify-content: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-image {
        order: -1;
    }
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image {
        position: relative;
        top: 0;
        order: -1;
    }
    .about-content h2,
    .about-content .about-subhead,
    .about-content .why-title {
        text-align: center;
    }
    .about-content .about-eyebrow {
        text-align: center;
    }
    .why-list li {
        text-align: left;
    }
    .vision-mission {
        grid-template-columns: 1fr;
    }
    .about-stats {
        justify-content: center;
    }
    .social-grid,
    .testimonials-grid,
    .contact-grid,
    .apk-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .courses-grid,
    .courses-grid.two-col,
    .wealth-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Side-by-side course collapses to stacked on tablet */
    .course-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .course-block.reverse .course-video,
    .course-block.reverse .course-details {
        order: 0;
    }
    .course-video {
        position: relative;
        top: 0;
    }
    .course-bullets {
        grid-template-columns: 1fr;
    }
    .community-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 1.5rem 5%;
        gap: 1.2rem;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .nav-right {
        gap: 1rem;
    }
    .nav-cta {
        padding: 0.5rem 1.1rem;
        font-size: 0.85rem;
    }
    .hero-text h1 {
        font-size: 2.2rem;
    }
    .journey-banner h2 {
        font-size: 1.8rem;
    }
    .about-content h2 {
        font-size: 2.2rem;
    }
    .social-grid,
    .testimonials-grid,
    .contact-grid,
    .apk-grid,
    .courses-grid,
    .courses-grid.two-col,
    .wealth-grid {
        grid-template-columns: 1fr;
    }
    .course-head h3 {
        font-size: 1.6rem;
    }
    .course-subtitle {
        font-size: 1rem;
    }
    .feature-cards {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }
    .feature-num {
        font-size: 1.3rem;
    }
    .course-bullets {
        grid-template-columns: 1fr;
    }
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.5rem;
    }
    .price-label-col {
        grid-column: 1;
    }
    .price-cta-col {
        grid-column: 1;
        flex-direction: column;
        align-items: stretch;
    }
    .price-cta-col .coupon-badge {
        align-items: center;
    }
    .price-cta-col .course-cta {
        width: 100%;
        justify-content: center;
    }
    .price-now {
        font-size: 1.5rem;
    }
    .floating-badge {
        display: none;
    }
    .section-header h2,
    .community-content h2 {
        font-size: 2rem;
    }
    .footer-links {
        gap: 0.8rem;
    }
    .live-chat-text {
        display: none;
    }
    .live-chat {
        padding: 0.9rem;
    }
}
.logo img{
  height: 50px;
  width: auto;
  object-fit: contain;
}

.price-space{
    flex-direction: row !important;
    justify-content: space-around !important;
}


/* ---------- Pricing wrap ---------- */
  .cv-pricing-wrap {
    padding: 1.6rem 0 0.5rem;
    max-width: 100%;
  }
 
  /* FEES label */
  .cv-fees-label {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green-profit);
    background: var(--green-glow);
    border: 1px solid var(--green-dark);
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 16px;
  }
 
  /* Two-column card grid */
  .cv-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }
 
  /* Individual plan card */
  .cv-card {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    padding: 20px 20px 16px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .cv-card:hover {
    border-color: var(--green-dark);
    box-shadow: 0 6px 24px var(--green-glow);
  }
 
  /* Featured card gets green border + subtle tint */
  .cv-card.featured {
    border-color: var(--green-profit);
    box-shadow: 0 0 0 1px var(--green-profit), 0 8px 28px var(--green-glow);
  }
 
  /* "Best Value" floating badge */
  .cv-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-profit);
    color: var(--bg-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    white-space: nowrap;
  }
 
  /* Validity pill */
  .cv-validity-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    background: var(--bg-hover);
  }
  .cv-validity-tag.pro {
    background: var(--green-glow);
    border-color: var(--green-dark);
    color: var(--green-profit);
  }
 
  /* Prices */
  .cv-price-original {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: #ff5252;
    margin-bottom: 3px;
  }
  .cv-price-now {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .cv-card.featured .cv-price-now {
    color: var(--green-profit);
  }
  .cv-price-now .rupee-suffix {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
  }
  .cv-card.featured .cv-price-now .rupee-suffix {
    color: var(--green-dark);
  }
  .cv-price-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
 
  /* Savings note */
  .cv-savings-note {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--green-profit);
    font-weight: 700;
    margin-top: 10px;
  }
  .cv-savings-note svg {
    flex-shrink: 0;
  }
  .cv-savings-note svg circle {
    stroke: var(--green-profit);
  }
  .cv-savings-note svg path {
    stroke: var(--green-profit);
  }
 
  /* Bottom row: coupon + CTA */
  .cv-bottom-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 4px;
  }
 
  /* Coupon box */
  .cv-coupon-box {
    flex: 1;
    min-width: 140px;
    background: rgba(251, 191, 36, 0.08);
    border: 1.5px dashed #fbbf24;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .cv-coupon-off {
    font-size: 0.88rem;
    font-weight: 900;
    color: #f59e0b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .cv-coupon-code {
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
  }
  .cv-coupon-code strong {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid #fbbf24;
    border-radius: 4px;
    padding: 1px 7px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #f59e0b;
    letter-spacing: 0.1em;
  }
 
  /* Thin divider */
  .cv-divider {
    width: 1px;
    height: 34px;
    background: var(--border);
    flex-shrink: 0;
  }
 
  /* Join Now button — inherits your .btn-primary style + override */
  .cv-btn-join {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-profit);
    color: var(--bg-primary);
    border: 2px solid var(--green-profit);
    border-radius: 50px;
    padding: 0.75rem 1.8rem;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.1s;
  }
  .cv-btn-join:hover {
    background: transparent;
    color: var(--green-profit);
    box-shadow: 0 0 24px var(--green-glow);
    transform: translateY(-2px);
  }
  .cv-btn-join:active {
    transform: scale(0.97);
  }
 
  /* Responsive */
  @media (max-width: 480px) {
    .cv-cards-row {
      grid-template-columns: 1fr;
    }
    .cv-bottom-row {
      flex-direction: column;
      align-items: stretch;
    }
    .cv-divider { display: none; }
    .cv-btn-join { justify-content: center; }
  }



  .course-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:8px;
    background:rgba(34,197,94,.08);
    color:#16a34a;
    border-left:4px solid #22c55e;
    font-weight:800;
    letter-spacing:2px;
    text-transform:uppercase;
}


.course-divider {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}
.divider-bar {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.divider-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--green-glow), transparent);
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.divider-bar span {
    position: relative;
    z-index: 1;
    color: var(--green-profit);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--green-profit);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--green-glow);
}

.feature-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--bg-hover);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon-box {
    background: var(--green-glow);
    color: var(--green-profit);
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-num {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.feature-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}






/* =====================================================
   POPUP MODAL — Integrated with Chartveda Theme
   Paste this block in your styles.css (replace old modal CSS)
   ===================================================== */

/* ── Overlay ── */
.cv-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    animation: cvFadeIn 0.3s ease;
}
.cv-modal-overlay.active {
    display: flex;
}

@keyframes cvFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes cvSlideUp {
    0% { opacity: 0; transform: translateY(40px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Modal card ── */
.cv-modal {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: var(--bg-secondary);
    border-radius: 28px;
    padding: 2rem 1.8rem 2.2rem;
    box-shadow: 0 30px 80px var(--shadow), 0 0 0 1px rgba(5, 150, 105, 0.08);
    border: 1px solid var(--border);
    animation: cvSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    transition: background 0.3s, border-color 0.3s;
    max-height: 98vh;
    overflow-y: auto;
}

.cv-modal::-webkit-scrollbar {
    width: 4px;
}
.cv-modal::-webkit-scrollbar-track {
    background: transparent;
}
.cv-modal::-webkit-scrollbar-thumb {
    background: var(--green-profit);
    border-radius: 10px;
}

/* ── Close button ── */
.cv-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: var(--bg-hover);
    border: none;
    color: var(--text-secondary);
    font-size: 1.3rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
    border: 1px solid transparent;
}
.cv-modal-close:hover {
    background: var(--green-glow);
    color: var(--green-profit);
    border-color: var(--green-profit);
    transform: rotate(90deg);
}

/* ── Badge (Gold to match the original image) ── */
.cv-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #d1fae5;
    color: #059669;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    border: 1px solid #10b981;
    margin-bottom: 1.2rem;
}
.cv-modal-badge i {
    font-size: 0.75rem;
}

/* ── Title ── */
.cv-modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.6rem 0;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

/* ── Form ── */
.cv-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cv-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cv-form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 2px;
}
.cv-required {
    color: #f87171;
    font-weight: 700;
    margin-left: 2px;
}

.cv-form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: 0.25s;
    outline: none;
    box-sizing: border-box;
}
.cv-form-input::placeholder {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.9rem;
}
.cv-form-input:focus {
    border-color: var(--green-profit);
    background: var(--bg-hover);
    box-shadow: 0 0 0 4px var(--green-glow);
}
.cv-form-input:focus-visible {
    outline: none;
}

/* input with icon */
.cv-input-with-icon {
    position: relative;
}
.cv-input-with-icon .cv-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.25s;
}
.cv-input-with-icon .cv-form-input {
    padding-left: 42px;
}
.cv-input-with-icon .cv-form-input:focus ~ .cv-input-icon,
.cv-input-with-icon .cv-form-input:focus + .cv-input-icon {
    color: var(--green-profit);
}

/* ── Price row ── */
.cv-modal-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 0.9rem 1.2rem;
    border: 1px solid var(--border);
    margin-top: 0.2rem;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.cv-price-left {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.cv-price-amount {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--green-profit);
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}
.cv-price-gst {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-hover);
    padding: 0.2rem 0.7rem;
    border-radius: 30px;
    border: 1px solid var(--border);
}
.cv-price-secure {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-profit);
    background: var(--green-glow);
    padding: 0.3rem 0.9rem;
    border-radius: 40px;
    border: 1px solid rgba(5, 150, 105, 0.15);
    white-space: nowrap;
}
.cv-price-secure i {
    font-size: 0.7rem;
}

/* ── Submit ── */
.cv-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: var(--bg-primary);
    background: var(--green-profit);
    border: 2px solid var(--green-profit);
    border-radius: 16px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px var(--green-glow);
    margin-top: 0.2rem;
}
.cv-modal-submit:hover {
    transform: scale(1.01);
    background: transparent;
    color: var(--green-profit);
    box-shadow: 0 12px 32px var(--green-glow);
}
.cv-modal-submit:active {
    transform: scale(0.98);
}

/* ── Footnote ── */
.cv-modal-footnote {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin: 0.2rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ── Responsive ── */
@media (max-width: 520px) {
    .cv-modal {
        padding: 1.5rem 1.2rem 1.8rem;
        border-radius: 20px;
    }
    .cv-modal-title {
        font-size: 1.25rem;
    }
    .cv-price-amount {
        font-size: 1.4rem;
    }
    .cv-modal-price {
        flex-wrap: wrap;
        gap: 0.6rem;
    }
    .cv-price-secure {
        font-size: 0.7rem;
        padding: 0.2rem 0.7rem;
    }
    .cv-modal-submit {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
}

@media (max-width: 380px) {
    .cv-modal {
        padding: 1.2rem 0.9rem 1.4rem;
    }
    .cv-modal-title {
        font-size: 1.1rem;
    }
    .cv-form-input {
        padding: 0.7rem 0.9rem;
        font-size: 0.85rem;
    }
    .cv-input-with-icon .cv-form-input {
        padding-left: 36px;
    }
}

/* ── Theme compatibility note ──
   The modal automatically follows your site's light/dark mode
   because it uses var(--bg-*), var(--text-*), and var(--border).
   The badge keeps a slight gold accent to match the original image.
*/